/** colors */
:root {
    --black: rgb( 25, 25, 25 );
	--unit: min( 42px, calc( 1vw * 70 / 6 ) );
	--green: rgb( 91, 132, 69 );
}

/** fonts */
@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "InterBold";
    src: url("../fonts/Inter-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "InterSemiBold";
    src: url("../fonts/Inter-Bold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}
/** reset */
* {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

body {
	background-color: #fff;
}

h2:empty, div:empty {
    display: none;
}

:root {
    font-size: 17px;
    line-height: 26px;
    font-family: "Inter";
    color: var( --black );
}

/** base */
#wrapper {
    max-width: 930px;
    margin: auto;
	padding: 25px 40px;
	border: solid 1px var( --black );
}

header {
	min-height: 130px;
}

/** header */
header a {
    line-height: 1px;
	background-image: none;

}
header a img {
    padding: 0;
    margin: 0;
	margin-top: 20px;
	margin-left: 12px;
	height: 140px;
}

/** main */
main {
	margin-top: 32px;
    clear: both;
	margin-bottom: 20px;
	margin-left: 166px;
}

main p,
footer p {
	margin-bottom: 25px;
}

main p strong,
footer p strong,
main li strong {
	font-family: "InterBold";
}


main h1 {
	margin-top: 50px;
	font-family: "InterBold";
	font-size: 35px;
	line-height: 45px;
	font-stretch: 100%;
	-webkit-font-smoothing: antialiased;
}

main h1 small {
	display: block;
	font-size: 21px;
    line-height: 30px;
	font-weight: normal;
	margin-top: 6px;
	margin-bottom: 10px;
}

h2 {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 12px;
	font-family: "InterBold";
}

ul  {
	margin-bottom: 2rem;
	padding-left: 1.25rem;
	line-height: 1.5294117647;
	list-style: none;
}

li {
	list-style-type: disc;
	padding-left: .25rem;
	margin-bottom: 18px;
}

li::marker {
	color: rgb(107, 117, 129);
}

li ul {
	margin-bottom: 0;
}

a  {
	font-family: "Inter";
	font-weight: bold;
	text-decoration: none;
	color: var( --green );
}

a:hover {
	font-weight: bold;
	text-decoration: underline;
}

footer {
	margin-left: -40px;
	margin-right: -40px;
	margin-bottom: -25px;
	padding-left: 206px;
	padding-right: 40px;
	padding-top: 25px;
	padding-bottom: 40px;
	background: linear-gradient(26.57deg, #c9dbc0 0%, #e7f1f5 100%);
}

footer a {
	color: var(--black);
	font-family: "InterBold";
	font-weight: bold;
}
footer h2 {
	margin-top: 25px;
}

#application a.btn {
	display: block;
	margin-top: 40px;
	margin-bottom: 40px;
	width: fit-content;
}

#application a.btn span:first-child {
	font-size: 14px;
	font-weight: bold;
	display: inline-block;
	width: fit-content;
	background-color: var(--green);
	background-image: none;
	color:#fff;
	padding-top: 7.2px;
	padding-left: 9.8px;
	padding-right: 9.8px;
	padding-bottom: 7.2px;
}

#application a.btn  span:first-child:hover {
	text-decoration: underline;
}

#application .btn span:last-child {
	background-image: url("../img/arrow.png");
	background-repeat: no-repeat;
	display: inline-block;
	float: right;
	width: 48px;
	height: 48px;
}

#contact a {
	background-image: none;
	padding-right: 0;
}

#modalities {
	font-weight: bold;
	font-family: "InterBold";
}

#summary p {
	font-family: "Inter";
	font-weight: bold;
}

.noMg {
	margin-bottom: 0;
}

@media screen and ( max-width: 480px ) {
	#wrapper {
		padding-left: 20px;
		padding-right: 20px;
		border: none;
	}

	header a img {
		width: 274px;
		margin-left: 0px;
		margin-top: 4px;
	}

	main h1 {
		margin-top: 50px;
		font-family: "InterBold";
		font-size: 30px;
		line-height: 40px;
		font-stretch: 100%;
		-webkit-font-smoothing: antialiased;
	}
	
	main h1 small {
		display: block;
		font-size: 17px;
		line-height: 26px;
		font-weight: normal;
		margin-bottom: 25px;
	}

	h2 {
		font-size: 21px;
	}
	
	main {
		margin-top: 12px;
		margin-left: 0;
	}

	footer {
		margin-left: -20px;
		padding-left: 20px;
	}

	ul {
		margin-bottom: 10px;
	}
}

.noWrap {
	white-space: pre;
	word-break: keep-all;
  }